home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / bother__ / cenvid.zip / CENVIDOS.ZIP / WAIT.BAT < prev    next >
DOS Batch File  |  1994-10-06  |  810b  |  16 lines

  1. @echo OFF
  2. REM **************************************************************************
  3. REM *** Wait.bat - Wait for a specified number of seconds before returing. ***
  4. REM *** ver.1      No check is done on the input being valid.              ***
  5. REM ***            This example would wait ten seconds: " Wait 10"         ***
  6. REM **************************************************************************
  7.  
  8. CEnviD " start=time(); while( difftime(time(),start) < %1 ) ; "
  9.  
  10. REM ********************************************************************
  11. REM *** The following method would have been an easier way to wait   ***
  12. REM *** the same amount of time, but it wouldn't have been such fun. ***
  13. REM ********************************************************************
  14.  
  15. REM CEnviD suspend(%1 * 1000)
  16.